Discover gists
| [ | |
| {"name":"Action Figure","dataId":90000048}, | |
| {"name":"Air Bomb","dataId":12000005}, | |
| {"name":"Air Bombs","dataId":1000054}, | |
| {"name":"Air Defense","dataId":1000012}, | |
| {"name":"Air Sweeper","dataId":1000028}, | |
| {"name":"Alchemist","dataId":null}, | |
| {"name":"Angry Jelly","dataId":73000011}, | |
| {"name":"Apprentice Warden","dataId":4000097}, | |
| {"name":"Archer Puppet","dataId":90000002}, |
Production-ready ASR + Speaker Diarization using NVIDIA NeMo.
- Model Architecture: Parakeet-TDT uses FastConformer (not Whisper's attention-heavy encoder)
- Native Pipelines: The YAML config triggers optimized C++/CUDA code for VAD and clustering
- TitaNet Embeddings: Much faster than x-vector or ECAPA-TDNN for speaker separation
- BF16 Inference: ~30% VRAM savings on Ada Lovelace GPUs (RTX 4000/4090)
| KFZUS-F3JGV-T95Y7-BXGAS-5NHHP | |
| T3ZWQ-P2738-3FJWS-YE7HT-6NA3K | |
| KFZUS-F3JGV-T95Y7-BXGAS-5NHHP | |
| 65Z2L-P36BY-YWJYC-TMJZL-YDZ2S | |
| SFZHH-2Y246-Z483L-EU92B-LNYUA | |
| GSZVS-5W4WA-T9F2E-L3XUX-68473 | |
| FTZ8A-R3CP8-AVHYW-KKRMQ-SYDLS | |
| Q3ZWN-QWLZG-32G22-SCJXZ-9B5S4 | |
| DAZPH-G39D3-R4QY7-9PVAY-VQ6BU | |
| KLZ5G-X37YY-65ZYN-EUSV7-WPPBS |
| #!/usr/bin/env bash | |
| # esp32-ai: clone, train, export, build, and flash — end to end | |
| # Reproduces github.com/slvDev/esp32-ai from a bare board. | |
| # Requires: ESP32-S3 N16R8 (16MB flash, 8MB PSRAM). | |
| # | |
| # Usage: | |
| # ./build_and_flash.sh # full run: data prep, train, export, build, flash | |
| # ./build_and_flash.sh --skip-train # reuse an existing firmware/model/model.bin, just build + flash | |
| set -euo pipefail |
| #!/usr/bin/env bash | |
| # esp32-ai: test a custom prompt against an already-trained, already-flashed model. | |
| # Does NOT retrain and does NOT rewrite the 15MB model partition. | |
| # | |
| # Usage: | |
| # ./run_custom_prompt.sh "Once there was a robot" | |
| set -euo pipefail | |
| if [ "$#" -lt 1 ]; then | |
| echo "Usage: $0 \"Your custom prompt\"" |
| aback | |
| abase | |
| abate | |
| abbey | |
| abbot | |
| abhor | |
| abide | |
| abled | |
| abode | |
| abort |
| <!doctype html> | |
| <html> | |
| <head> | |
| <title>This is the title of the webpage!</title> | |
| </head> | |
| <body> | |
| <p>This is an example paragraph. Anything in the <strong>body</strong> tag will appear on the page, just like this <strong>p</strong> tag and its contents.</p> | |
| </body> | |
| </html> |
A pattern for building personal knowledge bases using LLMs.
This is an idea file, it is designed to be copy pasted to your own LLM Agent (e.g. OpenAI Codex, Claude Code, OpenCode / Pi, or etc.). Its goal is to communicate the high level idea, but your agent will build out the specifics in collaboration with you.
Most people's experience with LLMs and documents looks like RAG: you upload a collection of files, the LLM retrieves relevant chunks at query time, and generates an answer. This works, but the LLM is rediscovering knowledge from scratch on every question. There's no accumulation. Ask a subtle question that requires synthesizing five documents, and the LLM has to find and piece together the relevant fragments every time. Nothing is built up. NotebookLM, ChatGPT file uploads, and most RAG systems work this way.
| <# | |
| .SYNOPSIS | |
| Fixes Electron/Chromium apps (Discord, GitHub Desktop, etc.) silently crashing (not starting). | |
| .DESCRIPTION | |
| This script resolves an issue caused by the Antigravity 2.0 IDE update, which injects rogue | |
| AppContainer SIDs into the %LOCALAPPDATA% folder permissions. These SIDs break the Chromium | |
| sandbox, causing apps installed in this directory to crash immediately upon launch. | |
| How it works: |